home *** CD-ROM | disk | FTP | other *** search
/ Champak 123 / (Vol 123) Jan 13 2011.iso / Games / spaceman_bobs_great_escape.swf / scripts / frame_114 / DoAction.as
Text File  |  2011-01-13  |  389b  |  19 lines

  1. if(goto == 2)
  2. {
  3.    _root.instructions._visible = true;
  4.    _root.story._visible = false;
  5.    _root.credits._visible = false;
  6. }
  7. else if(goto == 3)
  8. {
  9.    _root.instructions._visible = false;
  10.    _root.story._visible = true;
  11.    _root.credits._visible = false;
  12. }
  13. else
  14. {
  15.    _root.instructions._visible = false;
  16.    _root.story._visible = false;
  17.    _root.credits._visible = true;
  18. }
  19.